home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1998 / MacHack 1998.toast / The Hacks! / Transport Independent Speech / SpokenSerialApp / main.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-06-21  |  491 b   |  35 lines  |  [TEXT/CWIE]

  1. #ifndef __MAIN__
  2. #define __MAIN__
  3.  
  4. #include <String.h>
  5. #include <Speech.h>
  6. #include <Files.h>
  7.  
  8. #ifndef __TOOLBOX__
  9. #include "Toolbox.h"
  10. #endif
  11.  
  12. #ifndef __STRUCT__
  13. #include "Struct.h"
  14. #endif
  15.  
  16. #ifndef __SPEAKING__
  17. #include "Speaking.h"
  18. #endif
  19.  
  20. #ifndef __LISTENING__
  21. #include "Listening.h"
  22. #endif
  23.  
  24. #ifndef __LISTENINGAE__
  25. #include "ListeningAE.h"
  26. #endif
  27.  
  28. #ifndef __LANGUAGE__
  29. #include "Language.h"
  30. #endif
  31.  
  32. OSErr        SpeakWelcome        (void);
  33. OSErr        ListenToUser        (SpeechInfoPtr theSpeechInfo);
  34. #endif
  35.